home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / Kubuntu 8.10 / kubuntu-8.10-desktop-i386.iso / casper / filesystem.squashfs / var / lib / dpkg / info / netbase.postrm < prev    next >
Text File  |  2008-06-23  |  274b  |  21 lines

  1. #!/bin/sh -e
  2.  
  3. case "$1" in
  4.     remove)
  5.     ;;
  6.  
  7.     purge)
  8.     update-rc.d networking remove > /dev/null
  9.     ;;
  10.  
  11.     upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
  12.     ;;
  13.  
  14.     *)
  15.     echo "postrm called with unknown argument '$1'" >&2
  16.     exit 1
  17.     ;;
  18. esac
  19.  
  20.  
  21.